home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / TECHNICA / COMPUTER / H254.ZIP / IRITSM3S.ZIP / MISC_LIB / MAKEFILE.TC < prev    next >
Text File  |  1992-02-14  |  1KB  |  44 lines

  1. #
  2. # This is the make file for the misc. lib subdirectory.
  3. # In order to run it tcc is assumed to be available, in addition to
  4. # tlib and obviously borland make.
  5. #
  6. # Usage: "make [-DMDL=model]" where model can be l (large) or c (compact) etc.
  7. # Note the MDL is optional with large model as default.
  8. #
  9. #                Gershon Elber, Aug 1991
  10. #
  11.  
  12. # Works only on TC++ 1.0 make and up - swap out make before invoking command.
  13. .SWAP
  14.  
  15. # Get the destination directories:
  16. !include "..\makeflag.dos"
  17.  
  18. OBJS = config.obj genmat.obj getarg.obj iritprsr.obj \
  19.     priorque.obj dosgraph.obj
  20.  
  21. # Show me better way if you know one to prepare this line for TLIB:
  22. POBJS = +config.obj +genmat.obj +getarg.obj +iritprsr.obj \
  23.     +priorque.obj +dosgraph.obj
  24.  
  25. misc_lib.lib: $(OBJS)
  26.     del misc_lib.lib
  27.     tlib misc_lib.lib @&&!
  28. $(POBJS), misc_lib.lst
  29. !
  30.  
  31. install: misc_lib.lib
  32.     copy misc_lib.lib $(LIB_DIR)
  33.     copy *.h $(INC_DIR)
  34.  
  35. # Dependencies starts here - do not touch, generated automatically.
  36. config.obj:    config.h
  37. dosgraph.obj:    graphgen.h
  38. genmat.obj:    genmat.h
  39. getarg.obj:    getarg.h
  40. iritprsr.obj:    iritprsr.h
  41. priorque.obj:    priorque.h
  42. x11graph.obj:    graphgen.h
  43. xglgraph.obj:    genmat.h graphgen.h
  44.